home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / comm / net / tossreport.readme < prev    next >
Text File  |  1994-10-08  |  5KB  |  130 lines

  1. Short: Turns a CNetToss-log into a toss-report
  2. Type: comm/cnet
  3. Uploader: marlin@cnet577.cts.com
  4.  
  5. Long:
  6.  
  7. Turns a CNet-BBS CNetToss-log into a toss-report:
  8.  
  9.       TagName     Toss |   In |  Out | In/Day | Out/Day | In/Toss | Out/Toss
  10.  1 AMIGA_BBS         2 |    5 |    0 |      0 |       0 |       2 |        0
  11.  2 AMIGA            15 |  230 |    0 |     28 |       0 |      15 |        0
  12.  3 CNET             20 |   94 |    0 |     11 |       0 |       4 |        0
  13.  4 NET2410_SYSOP    23 |   91 |    0 |     11 |       0 |       3 |        0
  14.  5 CONSUMER_REPORT  22 |  522 |    0 |     65 |       0 |      23 |        0
  15.  6 AMIGA_TECH       42 |  165 |    0 |     20 |       0 |       3 |        0
  16.  7 AMIGA_PDREVIEW   10 |   32 |    0 |      4 |       0 |       3 |        0
  17.  8 FS               12 |   40 |    0 |      5 |       0 |       3 |        0
  18.  9 FILM             16 | 1056 |    0 |    132 |       0 |      66 |        0
  19. 10 ZYXEL            13 |  130 |    0 |     16 |       0 |      10 |        0
  20.  
  21. Shows how many times each Fidonet echo:
  22. 1) Gets tossed.
  23. 2) # of msgs inbound.
  24. 3) # of msgs outbound.
  25. 4) # of msgs in per day.
  26. 5) # of msgs out per day.
  27. 6) # of msgs in per toss run.
  28. 7) # of msgs out per toss run.
  29.  
  30. Installation:
  31.    1) Copy TossReport.rexx TO Rexx:
  32.  
  33.    2) Modify CNet:BBSMENU adding the following line as
  34.       "Available Everywhere":
  35.       > TOSSReport | {#0 Rexx:TossReport.rexx "TOSS INBOUND OUTBOUND"}
  36.  
  37.    3) Edit the variables below marked as "user-settable".
  38.  
  39. ========================================================
  40.  
  41. Options...      (All options can be abbreviated to just the 1st 4 chars.)
  42.    LISTFILE=FileName : Only display this list of tagnames. (Not yet supported)
  43.    SKIPFILE=FileName : Skip this list of tagnames.         (Not yet supported)
  44.    TAGNAME=TagName   : Only display this one (1) tagname.
  45.  
  46.    DAYS=n            : Only display tosses made within the last n days.
  47.                        (0=none, 1=today, 2=yesterday, etc...)
  48.  
  49.    SORT=n            : Sort the display, based on values in column #n.
  50.                        (The default is "no sorting", "display as logged".)
  51.    SORT=-n           : Reverse-sort the display, based on values in column #n.
  52.                        (Not yet supported)
  53.  
  54.    TOSSES            : Display number of tosses for each sub.
  55.    INBOUND           : Display number of inbound msgs.
  56.    OUTBOUND          : Display number of outbound msgs.
  57.    INDAY             : Display number of inbound msgs per day.
  58.    INTOSS            : Display number of outbound msgs per toss.
  59.    OUTDAY            : Display number of outbound msgs per day.
  60.    OUTTOSS           : Display number of outbound msgs per toss.
  61.    SHOWALL           : Display all seven (7) of the above items.
  62.  
  63.    LOG=FileName.LOG  : Name of CNetToss log for input. (Default=SysData:Log/Toss)
  64.    PROMPT            : Prompt user for addition options.  (Not yet supported)
  65.    HELP              : See help text.
  66.    TEST              : Display additional debugging code. (Not yet supported)
  67.    NONUMBER          : Don't number the list of tagnames.
  68.    NOHEADER          : Don't display the header-line.
  69.    NOTOTALS          : Don't display the totals-line.
  70.    NONAME            : Don't diplay author credits or prg name.
  71.    DATE              : Display date before each line of output.
  72.  
  73. A typical CLI usage would be:
  74.    CLI> rx Rexx:TossReport.rexx TOSS INBOUND OUTBOUND
  75.    CLI> Alias Report  rx Rexx:TossReport.rexx TOSS INBOUND OUTBOUND
  76.  
  77. A typical online usage would be:
  78.    BBSMENU> TOSSReport | {#4 rx Rexx:TossReport.rexx "INBOUND OUTBOUND"}
  79.  
  80. Other possible online uses:
  81.    BBSMENU> TOSSReport | {#4 rx Rexx:TossReport.rexx SHOWALL}
  82. (If you wish to have the screen-cleared first, add "\f1" right after the "|".)
  83.  
  84. Similar uses from the CLI:
  85.    CLI> Alias TossReport    rx Rexx:TossReport.rexx SHOWALL
  86.    CLI> Alias TossCalls     rx Rexx:TossReport.rexx INBOUND OUTBOUND
  87.  
  88. You must be using CNet's own CNetToss prg (NOT TrapToss or other tosser).
  89. You must be running "Toss VERBOSITY 2"    (level 2 or 3).
  90.  
  91. =========================================================
  92.  
  93. Bill Beogelein
  94. Box 530441
  95. Livonia, MI 48153
  96. BBS 810-473-2020, Fido 1:2410/207
  97.  
  98. History:
  99. $VER: TossReport v0.2 Saturday 11-Jun-94 21:14:21
  100.    First release.
  101.    Beta-copy sent to "Michael Rudolph" #432 for testing.
  102.  
  103. $VER: TossReport v0.1 Thu 12-May-94 16:10:20
  104.    Written and tested for CNet-BBS v3.05c.
  105.  
  106. ====================================================================
  107.  
  108. Future Plans:
  109.    Please report all bugs and offer any suggestions.
  110.    Add "?" at PROMPT for help-text.
  111.    Tally MATRIX too.
  112.    Show Tosses/Second in totals-line.
  113.    Rewrite in 'C' for speed.
  114.  
  115. Ignore:
  116.    lz u CNet3:TossReport.LHA CNet:rexx/TossReport.rexx Help:BB_CMDS a:zzzBBSad
  117.  
  118.  
  119. ============================= Archive contents =============================
  120.  
  121. Original  Packed Ratio    Date     Time    Name
  122. -------- ------- ----- --------- --------  -------------
  123.     1659     619 62.6% 24-Jun-94 00:01:30  zzzBBSad
  124. : Amiga BBS 810-473-2020
  125.     9798    4032 58.8% 23-Jun-94 15:33:34  BB_CMDS
  126. : List of cmds added to CNet by the SysOp.  Copy BB_CMDS SysText:Help/BB_CMDS
  127.    17281    5559 67.8% 25-Jun-94 21:18:36  TossReport.rexx
  128. -------- ------- ----- --------- --------
  129.    28738   10210 64.4% 10-Jul-94 12:42:26   3 files
  130.